Conversation
73a7475 to
473f687
Compare
The Bun migration (#599) removed actions/setup-node from the E2E workflow. MCP skills using `npx` (e.g., exa-mcp-server) need Node.js 22 — the system default on ubuntu-24.04 is too old. Additionally, replace direct smol-toml import in create-expert E2E test with parsePerstackConfig from @perstack/perstack-toml. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
473f687 to
6032878
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
actions/setup-node@v6(Node.js 22) to E2E workflow — required fornpx-based MCP skills likeexa-mcp-serverthat need a modern Node.js runtimesmol-tomlas root devDependency — directly imported by create-expert E2E test, previously resolved only as transitive depRoot cause
The Bun migration (#599) removed
actions/setup-nodefrom the E2E workflow. MCP skills spawned vianpx(exa-mcp-server) ran with the system default Node.js on ubuntu-24.04, which is too old. This caused 3 out of 4 consistent cli-core failures (e2e-multi-skill,e2e-special-tools,e2e-mixed-tools) and the create-expertsmol-tomlresolution error.Test plan
🤖 Generated with Claude Code